home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / sh03src.zoo / sh-pl03 / pwd / pwd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-22  |  231 b   |  17 lines

  1. #include <stddef.h>
  2. #include <limits.h>
  3. #include <unistd.h>
  4. #include <string.h>
  5.  
  6. #include <osbind.h>
  7.  
  8. int main() {
  9.     char cwd[PATH_MAX+3];
  10.     
  11.     getcwd(cwd, PATH_MAX);
  12.     strcat(cwd, "\n\r");
  13.     Cconws(cwd);
  14.     
  15.     return 0;
  16. }
  17.